如果服务器上启用了防火墙,请执行配置端口的必需步骤。
要配置应用程序的操作端口:
firewall-cmd --add-port=<port>/<protocol> --permanent
ufw allow <端口>
apt-get install iptables-persistent
iptables -A INPUT -p <protocol> --dport <port> -j ACCEPT
firewall-cmd --reload
netfilter-persistent save
如果您正在使用 Ubuntu OS, 将自动应用更改。
将为应用程序的操作配置端口。
页面顶端